home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #3 / Amiga Plus CD - 2002 - No. 03.iso / AmiSoft / Dev / Gui / Cit.lha / CIT / citra / CITText.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-11-25  |  322 b   |  23 lines

  1. //
  2. //                     CITText include
  3. //
  4. //                         StormC
  5. //
  6. //                    version 2002.11.23
  7. //
  8.  
  9. #ifndef CIT_TEXT_H
  10. #define CIT_TEXT_H TRUE
  11.  
  12. #ifndef CIT_BUTTON_H
  13. #include "CITButton.h"
  14. #endif
  15.  
  16. class CITText:public CITButton
  17. {
  18.   public:
  19.     CITText() { ReadOnly(); BevelStyle(4); }
  20. };
  21.  
  22. #endif
  23.